/*头部*/
/*$$
{"color":[{"val":"#4c4c4c","title":"默认导航文字颜色/PC端二级导航默认字体颜色"},
{"val":"#064fd9","title":"PC端导航鼠标划过的颜色"}],
"background":[{"val":"#ffffff","title":"PC端导航背景颜色/PC端二级导航背景颜色"},
{"val":"#4b89ff","title":"PC端LOGO背景颜色/PC端二级导航鼠标滑过背景颜色/WAP端导航背景颜色"},
{"val":"rgba(255, 255, 255, 1)","title":"WAP端导航窗口背景颜色"}],
"border":[{"val":"rgba(100,100,100,0.3)","title":"PC端导航边框"},
{"val":"#dfe0e1","title":"WAP端导航边框"}]}
$$*/
#head_144{
	width: 100%;
	height: 100px;
}
#head_144 .head_fixed{
	height: 100px;
	width: 100%;
	position: fixed;
	top:0;
	left: 0;
	z-index: 999;
	background: #ffffff;
	transition: 0.3s linear;
	opacity: 1;
	box-shadow: 0 0 10px 1px rgba(100,100,100,0.3);
}
#head_144 .header{
	width: 100%;
	height: 100%;
}
#head_144.fixedNav{
	background: #ffffff;
	box-shadow: 0px 10px 12px rgba(0, 0, 0, .1);
}
#head_144 .logo{
	width: calc((100% - 1200px) / 2 + 220px);
	background: #4b89ff;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	position: absolute; 
	left: 0;
	top:0;
}

#head_144 .logo a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	box-sizing: border-box;
}
#head_144 .logo img{
	height: 40px;
}
#head_144 .navBox{
	width: 1200px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	
}
#head_144 .navMain{
	width: calc(100% - 400px);
	height: 100%;
	
}
#head_144 .navMainBox{
	width: 80%;
	margin: 0 auto;
	height: 100%;
	display: flex;
	min-width: 600px;
}
#head_144.fixedNav .navMain{
	border-bottom: none;
}


#head_144 .navMain .navTit{
	flex: 1;
	font-size: 16px;
	float: left;
	position: relative;
}
#head_144 .navMain .navTit .tit{
	color:#ffffff;
	text-align: center;
	display: block;
	line-height: 30px;
	position:relative;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}


#head_144 .navMain .navTit .tit::after{
	content: "";
	display: inline-block;
	position: absolute;
	width: 23px;
	height: 22px;

	background-size: cover;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	transition: all .5s;
	opacity: 0;
}
#head_144 .navMain .navTit:hover .tit::after{
	bottom: 10px;
	opacity: 1;
}
#head_144 .navMain .navTit .tit i{
	font-size: 16px;
	color:#4c4c4c;
	display: block;
	text-align: center;
	line-height: 20px;
}
#head_144 .navMain .navTit:hover .tit i{
	color: #064fd9;
}
#head_144 .navMain .navTit:hover .tit i::after{
	content: '';
	width: 30px;
	height: 2px;
	background: #064fd9;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: 20%;
	transform: translate(-50%,-50%);
}
#head_144 .navTit .levelUl{
	position: absolute;
	top:100px;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	overflow: hidden;
	background: #ffffff;
	padding: 8px 0 ;
	box-shadow: 0 10px 10px 1px rgba(0, 0, 0, .1);
	border-radius: 0 0 5px 5px;
}
#head_144 .navTit:hover .levelUl{
	display: block;
}
#head_144 .leveltit i{
	position: relative;
	z-index: 9;
	display: block;
	min-width: 120px;
	padding: 0 20px;
	white-space: nowrap;
	line-height: 35px;
	color:#333333;
}
#head_144 .leveltit{
	width: auto;
	background:#ffffff;
	margin-bottom: 8px;
	text-align: center;
	height: 35px;
	display: block;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}
#head_144 .leveltit:last-child{
	margin-bottom: 0;
}
#head_144 .leveltit::after{
	background:#4b89ff;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	transition: all .5s;
}
#head_144 .leveltit:hover::after{
	width: 100%;
}
#head_144 .leveltit:hover i{
	color:#ffffff;
}
#head_144 .navSear{
	width: 180px;
	height: 100%;
	display: flex;
	align-items: center;
	user-select: none;
}
#head_144 .navSearBox{
	width:180px;
	border:#afafaf 1px solid;
	border-radius: 26px;
	overflow:hidden;
	padding: 0 36px 0 15px;
	box-sizing: border-box;
	position: relative;
}
#head_144 .navSearInput{
	width: 100%;
	height: 26px;
	line-height: 26px;
	font-size: 12px;
	color: #333;
}
#head_144 .navSearInput::placeholder{
	color: #afafaf;
}
#head_144 .navSearBtn{
	background: url('/static/images/HD000019_01.png') no-repeat center center;
	background-size: 18px 18px;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 26px;
	cursor: pointer;
	z-index: 2;
}





/* 右侧菜单 */
#head_144 #menuClosed{
    position: absolute;
    right:15px;
    top:15px;
    font-size:25px;
    color: #262626;
	font-weight: bold;
}
#head_144 .menu{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:rgba(255, 255, 255, 1);
    z-index: 999999999;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s ease .4s,opacity .4s ease;
    transition: visibility 0s ease .4s,opacity .4s ease;
}
#head_144 .menu.cur{
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: .05s;
            transition-delay: .05s;
}
#head_144 .menu-cnt{
	width:100%;
	height: 100%;
    right:0;
    top: 0;
    padding:60px 30px 30px 30px;
}
#head_144 .menu-cnt.cur{
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
#head_144 .menu-item{
    border-bottom:#dfe0e1 1px solid;
	padding:10px 20px;
	height: auto;
	display: block;
}
#head_144 .menu-list li .dropdown_menu{
	display: none;
}
#head_144 .menu-list li.active .dropdown_menu{
	display:block;
}
#head_144 .menu-list li .dropdown_menu a{
	display:block;
	height:28px;
	color:#4b89ff;
	line-height:28px;
	font-size:14px;
	padding-left: 20px;
	box-sizing:border-box;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#head_144 .menu-list li .dropdown_menu a:last-child{
	border:none;
}
#head_144 .menu-title{
    position: relative;
    font-size:16px;
    font-weight: 500;  
	cursor: pointer;
	font-weight: bold;
	display: block;
	line-height:40px;
	color:#263053;
}
#head_144 .menu-title a{
	color:#263053;
}
#head_144 .menu-item.up .menu-title{
	background: url(/static/images/HD000019_06.png) no-repeat right center;
	background-size: auto 10px;
}
#head_144 .menu-item.up.active .menu-title{
	background: url(/static/images/HD000019_05.png) no-repeat right center;
	background-size: auto 10px;
}
#head_144 .menu-list{
    height: 75%;
	overflow: auto;
	width: 100%;
}

#head_144 .navBtn{
	display: none;
	width: 60px;
	height:50px;
	float: right;
	cursor: pointer;
	position: relative;
	margin-right:20px;
}
#head_144 .navBtn .span_0{
    position: absolute;
    width: 26px;
	right: 0;
	background: #ffffff;
	height: 3px;
    top: 40%;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
#head_144 .navBtn.cur .span_0{
    top: 46%;
}
#head_144 .navBtn.cur .span_0.span_1{
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
}
#head_144 .navBtn.cur .span_0.span_2{
    opacity: 0;
}
#head_144 .navBtn.cur .span_0.span_3{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#head_144 .navBtn .span_0.span_1{
    top: 34%;
}
#head_144 .navBtn .span_0.span_2{
    top: 50%;
   
}
#head_144 .navBtn .span_0.span_3{
    top: 65%;
}
#bananer_144{
	width: 100%;
	overflow: hidden;
}
#bananer_144 .bannerSwiper{
	width: 100%;
	/* overflow: hidden; */
	position: relative;
}
#bananer_144 .bannerSwiper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#bananer_144 .bannerSwiper .swiper-slide,
#bananer_144 .bannerSwiper .swiper-wrapper{
	width: 100%;
	height: 100%;
}
#bananer_144 .bannerSwiper .slider-btn-prev {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 5%;
    width: 81px;
    height: 81px;
    margin-top: -20px;
    background: url(/static/images/HD000018_01.png) 50% 50% no-repeat;
    transition: all 0.3s ease;
    cursor: pointer;
	opacity: 0;
}
#bananer_144 .bannerSwiper:hover .slider-btn-prev {
    left: 10%;
	opacity: 1;
}
#bananer_144 .bannerSwiper .slider-btn-next {
    position: absolute;
    z-index: 30;
    top: 50%;
    right: 5%;
    width: 81px;
    height: 81px;
    margin-top: -20px;
	opacity: 0;
    background: url(/static/images/HD000018_02.png) 50% 50% no-repeat;
    transition: all 0.3s ease;
    cursor: pointer;
}
#bananer_144 .bannerSwiper:hover .slider-btn-next {
    right: 10%;
	opacity: 1;
    cursor: pointer;
}
#bananer_144 #pcBana{
	display: block;
	width: 100%;
}

#bananer_144 .bannerSwiper .bytxt{
	width: 7vw;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #4b89ff;
	z-index: 3;
	color: #ffffff;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}
#bananer_144 .bannerSwiper .bytxt p{
	width: 18px;
	text-align: center;
	line-height: 1.2;
	word-break: break-all;
}




#bananer_144 .swiper-pagination{
	bottom: 5%;
}
#bananer_144 .swiper-pagination-bullet{
	width: 100px;
	height: 4px;
	background: #ffffff;
	border-radius: 0;
}








@media screen and (max-width: 1200px) {
	/* #bananer_144 #pcBana{
		height:50vw;
	} */
	#head_144 .logo{
		width: auto;
		height: 100%;
		min-width: 200px;
	}
	#head_144 .logo a{
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		align-content: center;
		justify-content:center;
	}
	#head_144 .navBox{
		width: 100%;
	}
	#head_144 .navSear{
		display: none;
	}
	#head_144 .navMain{
		width: calc(100% - 200px);
		height: 100%;
	}
	#head_144 .navMainBox{
		width: 94%;
	}
	#head_144 .navMain .navTit .tit i{
		font-size: 14px;
	}
	#head_144 .head_fixed{
		height: 80px;
	}
	#head_144 .navTit .levelUl{
		top: 80px;
	}
	#head_144{
		height: 80px;
	}
	#head_144 .logo img{
		height: 30px;
	}
}
@media screen and (max-width: 768px){
	#head_144 .logo{
		min-width: 0;
	}
	#bananer_144 .swiper-pagination-bullet{
		height: 2px;
		width: 50px;
	}
	#head_144{
		height: 50px;
	}
	#head_144 .navBox{
		display: none;
	}

	#head_144 .logo{
		background: none;
		justify-content:center;
	}
	#head_144 .logo a{
		padding: 0 20px;
		box-sizing: border-box;
	}
	#head_144 .logo img{
		height: 24px;
	}
	#head_144 .navBtn{
		display: block;
	}
}

#gotop_144{
	position: fixed;
	right: 100px;
	width:58px;
	bottom: 50px;
	z-index: 999999;
}
#gotop_144 .topList{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content:last baseline;
	/* padding-left: 165px; */
}
#gotop_144 .topList li{
	width: 58px;
	height: 58px;
	background: #fd4e2a;
	color: #ffffff;
	border-radius: 58px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 20px;
	float: right;
	margin-bottom: 15px;
	position: relative;
	cursor: pointer;
}
#gotop_144 .topList li .tellCon{
	width: 0;
	background: #fd4e2a;
	position: absolute;
	right: 0;
	display: flex;
	border-radius: 58px;
	height: 100%;
	align-items: center;
	padding: 0 10px;
	font-size: 14px;
	opacity: 0;
	transition: all .8s;
	overflow: hidden;
}
#gotop_144 .topList li:hover .tellCon{
	width: 220px;
	opacity: 1;
}
#gotop_144 .topList li .codeCon{
	background: #fd4e2a;
	width: 0;
	height: 100px;
	position: absolute;
	right: 65px;
	top:50%;
	margin-top: -50px;
	padding: 10px;
	opacity: 0;
	transition: all .8s;
	border-radius: 10px;
}
#gotop_144 .topList li:hover .codeCon{
	width: 100px;
	opacity: 1;
}
#gotop_144 .topList li .codeCon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#gotop_144 .topList li .tellCon img{
	margin-right: 10px;
}
#gotop_144 .topList .topBtn{
	background: #666666;
}
@media screen and (max-width: 1024px){
	#head_144 .navMain .navTit{
		font-size: 14px;
	}
}
@media screen and (max-width: 768px){
	#gotop_144{
		display: none;
	}
	#bananer_144 .bannerSwiper img{
		height: 60vw;
	}
	#head_144 .head_fixed{
		background: #4b89ff;
		height: 50px;
	}
}
#head_144 .hideNav{
	top: -100px!important;
	opacity: 0.8;
}